home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 2 (Reseller) / Apple R&P Lib Reseller v2.0.iso / 3-Demos / Third Party Demos / DTMedia / SpringBoard Publisher / background_24995.txt < prev    next >
Text File  |  1989-01-25  |  1KB  |  62 lines

  1. -- background: 24995 from stack: in
  2. -- bmap block id: 25431
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: Black Last
  6. ----- HyperTalk script -----
  7. on idle
  8.   global initTime,Delay,effectFlag
  9.   if the secs - initTime >= Delay then
  10.     if effectFlag = 1 then visual dissolve slowly
  11.     if effectFlag = 2 then visual iris open slowly
  12.     if effectFlag = 3 then visual wipe right slowly
  13.     if effectFlag = 4 then visual wipe down slowly
  14.     if effectFlag = 5 then visual iris close slowly
  15.     if effectFlag = 6 then visual wipe up slowly
  16.     if effectFlag = 7 then visual scroll right slowly
  17.     go next card
  18.   end if
  19. end idle
  20.  
  21. on arrowKey
  22. end arrowKey
  23.  
  24.  
  25. -- part 1 (button)
  26. -- low flags: 00
  27. -- high flags: 0000
  28. -- rect: left=136 top=324 right=342 bottom=360
  29. -- title width / last selected line: 0
  30. -- icon id / first selected line: 0 / 0
  31. -- text alignment: 1
  32. -- font id: 0
  33. -- text size: 12
  34. -- style flags: 0
  35. -- line height: 16
  36. -- part name: Press Here To Return To Menu
  37. ----- HyperTalk script -----
  38. on mouseUp
  39.   visual iris close
  40.   go to card "Menu"
  41. end mouseUp
  42.  
  43.  
  44.  
  45. -- part 2 (button)
  46. -- low flags: 00
  47. -- high flags: 0000
  48. -- rect: left=0 top=322 right=342 bottom=23
  49. -- title width / last selected line: 0
  50. -- icon id / first selected line: 9301 / 9301
  51. -- text alignment: 1
  52. -- font id: 0
  53. -- text size: 12
  54. -- style flags: 0
  55. -- line height: 16
  56. -- part name: PrevCard Black
  57. ----- HyperTalk script -----
  58. on mouseUp
  59.   go to prev card
  60. end mouseUp
  61.  
  62.